html {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    padding: 0;
    margin: 0;
}

.local a {
    margin: 0 10px !important;
}

.local a:first-of-type {
    margin: 0 0 !important;
}

.header {
    width: 100%;
    height: 233px;
    box-sizing: border-box;
}

.logo {
    height: 168px;
    padding:37px calc(50% - 600px) 31px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    background: url('./header-bg.png') no-repeat center;
    background-size: cover;
}

.logoImg {
    width: 333px;
    height: 100px;
}

.titImg {
    width: 394px;
}

.logo .logo-right {
    display: flex;
    align-items: center;
}

.logo .logo-right input {
    width: 294px;
    margin-right: 3px;
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    color: #333;
    font-size: 14px;
    background: rgba(255,255,255,0.21);
    border: 1px solid #0464CA;
}

.logo .logo-right .search {
    width: 62px;
    height: 36px;
    line-height: 36px;
    background: #0464CA;
    color: #FFF;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
}

.logo .defultShow {
    display: flex;
}

.logo .searchPage {
    display: none;
}

.header-menu {
    width: 100%;
    height: 65px;
    padding:0 calc(50% - 600px);
    background: #0464CA;
    display: flex;
    justify-content: space-between;
}

.header-menu .home {
    color: #FFFFFF;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 18px;
    line-height: 65px;
    cursor: pointer;
    margin-right: 45px;
}

.header-menu div {
    color: #FFFFFF;
    margin-right: 44px;
    text-align: center;
    position: relative;
}

.header-menu div:last-of-type {
    margin-right: 0;
}

.header-menu div a {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 18px;
    line-height: 65px;
    cursor: pointer;
}

.header-menu .active {
    font-weight: bold;
}

.header-menu .submenu {
    width: 150%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: absolute;
    top: 70px;
    left: -17px;
    background: #0464CA;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-10px);
    z-index: 100;
    list-style: none;
}

.noShou .header-menu .submenu {
    top: 75px;
}

.noShou .header-menu .submenu a {
    line-height: 40px;
}

.header-menu .submenu a {
    font-family: PingFang SC;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 36px;
    display: block;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 鼠标悬停时显示下拉菜单 */
.header-menu div:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-menu .submenu li {
    height: 40px;
    line-height: 40px;
}

.header-menu a {
    color: #FFF;
}

.noShou {
    height: 233px;
    display: none;
    background: url(./header-bg.png) no-repeat;
    background-size: cover;
}

.noShou .header-menu {
    background: #0464CA;
    height: 65px;
}

.noShou .header-menu a {
    line-height: 71px;
}

/* 处理鼠标移入效果 */

.listBar a:hover {
    color: #0464CA !important;
}

.list .right .listBox a:hover p {
    color: #0464CA !important;
}


/* 底部 */
.footer ul {
    display: flex;
    justify-content: space-between;
}

.outLine {
    padding:0 calc(50% - 600px);
}

.outLine select {
    max-width: 180px;
    padding: 25px 15px 25px 0;
    border: none;
    -webkit-appearance: none; /* Webkit 浏览器 */
    -moz-appearance: none;    /* Firefox 浏览器 */
    appearance: none;
    outline: none;
    font-size: 14px;
    position: relative; /* 父容器相对定位 */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 7"><polygon points="6,6 11,1 1,1"/></svg>') no-repeat right center;
    background-size: 12px 7px; /* 图标的大小 */
    font-weight: 540;
}

.footer .message {
    width: 100%;
    height: 193px;
    background: #FFF;
    padding:0 calc(50% - 600px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .message .logoImg {
    width: 103px;
}

.footer .message .wxImg {
    width: 269px;
    margin-bottom: 20px;
}

.footer .message .right {
    font-size: 16px;
    color: #333;
    text-align: right;
    line-height: 36px;
}

.footer .last {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 26px;
    padding: 30px 0;
    border-top: 2px solid #0464CA;
    background: #FFF;
    text-align: center;
}

/* 分页组件 */

/* 分页 */

.pages {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0;
}

.pages ul {
    display: flex;
}

.pages ul .disabled {
    display: none;
}

.pages ul li a {
    display: block;
    padding: 8px 18px;
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    color: #333;
    margin: 0 4px;
    border: 1px solid #ddd;
}

.pages ul li a:hover {
    background: #DDD;
}

.pages1 a {
    margin: 0;
}

.pages ul li .active {
    background: #0464CA !important;
    color: white;
}


@media screen and (max-width: 768px) {
    .logo {
        padding: .6rem 0 .3rem;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .logoImg {
        width: 4rem;
        height: auto;
        margin-bottom: .3rem;
    }

    .titImg {
        width: 4rem;
    }

    .logo .defultShow {
        margin-top: .2rem;
    }

    .header-menu {
        height: 1rem;
        padding: 0;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
    }

    .header-menu .home {
        font-size: 0.2rem;
        line-height: 1rem;
        margin-right: 0;
        margin: 0 .1rem;
    }

    .header-menu div a {
        font-size: 0.2rem;
        line-height: 1rem;
    }

    .noShou .header-menu {
        width: 100%;
        height: .7rem;
    }

    .noShou .header-menu a {
        line-height: .7rem;
    }

    .noShou {
        height: 3.9rem;
    }

    .header-menu .active::before, .header-menu .active::after {
        width: .2rem;
        height: .2rem;
        margin: -.06rem 0;
    }

    .header-menu div {
        flex: none;
        margin: 0 .1rem;
        flex-shrink: 0;
    }

    .noShou .header-menu .submenu {
        top: 0.9rem;
    }

    .noShou .header-menu .submenu a {
        line-height: .4rem;
    }

    .logo .logo-right input {
        width: 2rem;
        font-size: .18rem;
    }

    .logo .logo-right .search {
        line-height: .6rem;
    }

    .header-menu .submenu a {
        font-size: .16rem;
        line-height: .36rem;
    }

    .pages {
        margin: .2rem 0;
    }

    .pages ul {
        flex-wrap: wrap;
    }

    .footer ul {
        display: flex;
        justify-content: space-between;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
    }

    .footer .message {
        height: auto;
        padding: .2rem;
    }

    .footer .message .right {
        font-size: .16rem;
        color: #333;
        text-align: right;
        line-height: .36rem;
    }

    .footer .message .logoImg {
        width: 1rem;
    }

    .footer .message .wxImg {
        width: 3rem;
    }
    
    .footer .last {
        font-size: .16rem;
        line-height: .26rem;
        padding: .3rem .2rem;
    }
    
}